home *** CD-ROM | disk | FTP | other *** search
- echo off
- if %1.==. goto goodbye
- cls
- echo.
- echo This batch file will make a copy of Contact Plus onto floppy %1
- echo.
- echo The data files will NOT be transferred ... only the program files.
- echo.
- echo Place a blank formatted diskette into drive %1 and
- pause
- echo Now making a copy ... standby
- copy c.exe %1 > nul
- copy csetup.exe %1 > nul
- copy c.hlp %1 > nul
- copy csetup.hlp %1 > nul
- copy friend.bat %1 > nul
- copy cbackup.bat %1 > nul
- copy c.doc %1 > nul
- echo.
- echo A fresh copy of the Contact Plus program files have been copied to
- echo floppy drive %1. The data files have NOT been copied.
- echo.
- echo The first time your friend runs Contact Plus, he will be asked if
- echo he wishes to create a new database. Have him answer YES.
- echo.
- :goodbye
-